home *** CD-ROM | disk | FTP | other *** search
/ Freelog 121 / FreelogMagazineJuilletAout2014-No121.iso / Outils / Adobe-Air / adobe-air_13.exe / [0] / setup.swf / scripts / mx / controls / ProgressBarLabelPlacement.as < prev    next >
Text File  |  2014-03-27  |  627b  |  29 lines

  1. package mx.controls
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public final class ProgressBarLabelPlacement
  8.    {
  9.       
  10.       public static const RIGHT:String = "right";
  11.       
  12.       public static const LEFT:String = "left";
  13.       
  14.       public static const BOTTOM:String = "bottom";
  15.       
  16.       public static const TOP:String = "top";
  17.       
  18.       mx_internal static const VERSION:String = "3.0.0.0";
  19.       
  20.       public static const CENTER:String = "center";
  21.        
  22.       
  23.       public function ProgressBarLabelPlacement()
  24.       {
  25.          super();
  26.       }
  27.    }
  28. }
  29.